/* Reset بعض الإعدادات الأساسية */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  text-align: right;
  direction: rtl;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff;
  border-bottom: 2px solid #ddd;
}

.logo img {
  width: 100px;
  height: auto;
  
}

.center-text {
  text-align: center;
}

.center-text h1 {
  font-size: 28px;
  font-weight: bold;
  color: #389c54;
}

.center-text h2 {
  font-size: 18px;
  color: #555;
}

.center-text p {
  font-size: 14px;
  color: #777;
}

/* Navigation */
.navbar {
  background-color: #003366;
  overflow: hidden;
  text-align: center;
}

.navbar a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #0055a5;
}

/* Hero Section */
.hero {
  background-color: #eef3f8;
  padding: 40px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero button {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.hero button:hover {
  background-color: #0055a5;
}

/* Footer */
.footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 100px;
}

.buttons {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.buttons .btn {
  position: relative;
  padding: 12px 40px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  margin: 40px 0 0 30px;
  width: 100%;
  max-width: 300px;
  text-align: justify;
}

.buttons .btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.buttons img {
  width: 1600px;
  height: 380px;
  margin: -125px 10px;
  
}

.download-btn {
  display: inline-block;
  
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  margin: 20px 700px 0 60px;
}

.download-btn:hover {
  background-color: #0055a5;
}

.full-width h3 {
  font-size: 20px;
  color: #003366;
  margin: 20px 600px 0 0;
}
/* Responsive Design باستخدام Media Queries */
@media (min-width: 768px) {
  .buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .buttons .btn {
    width: auto;
    max-width: 600px;
  }

  .main-header {
    flex-wrap: nowrap;
  }

  .center-text {
    width: auto;
    margin: 0 10px;
  }
}

@media (min-width: 992px) {
  .navbar a {
    padding: 14px 20px;
    font-size: 16px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .buttons .btn {
    font-size: 14px;
    padding: 20px 80px;
    
  }
}